162675983c0a41edd29220e6cbc061f04830142b,test/unit/org/apache/cassandra/db/index/PerRowSecondaryIndexTest.java,PerRowSecondaryIndexTest,testColumnDelete,#,81

Before Change


        // issue a column delete and test that the configured index instance was notified to update
        RowMutation rm;
        rm = new RowMutation("PerRowSecondaryIndex", ByteBufferUtil.bytes("k2"));
        rm.delete(new QueryPath("Indexed1", null, ByteBufferUtil.bytes("indexed")), 1);
        rm.apply();

        ColumnFamily indexedRow = TestIndex.LAST_INDEXED_ROW;

After Change


        // issue a column delete and test that the configured index instance was notified to update
        RowMutation rm;
        rm = new RowMutation("PerRowSecondaryIndex", ByteBufferUtil.bytes("k2"));
        rm.delete("Indexed1", ByteBufferUtil.bytes("indexed"), 1);
        rm.apply();

        ColumnFamily indexedRow = TestIndex.LAST_INDEXED_ROW;